home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Merciful 2
/
Merciful - Disc 2.iso
/
software
/
i
/
imagefxv2.1a.lha
/
ImageFX
/
Rexx
/
PrintFax.ifx
< prev
next >
Wrap
Text File
|
1996-03-02
|
698b
|
39 lines
/*
* $VER: Create 1.04.00 (8.6.93)
*
* Arexx program for the ImageFX image processing system.
* Written by Thomas Krehbiel
*
* Print out a PhonePak FAXX file using the Prefs2 printer module.
* Prints all pages of the fax file.
*
* Actually this will work with any file format.
*
*/
OPTIONS RESULTS
RequestFile '"Select Fax File:"' '"PPak:(Master)"'
IF rc ~= 0 THEN EXIT
file = result
SetPrinter 'Prefs2'
Menu Printer
page = 1
DO FOREVER
LoadBuffer '"'file'"' Force page
IF rc ~= 0 THEN LEAVE
Printer Density 3
Printer Aspect Keep
Printer Size HEIGHT "10.5"
Printer Shade BW
Printer Print
IF rc ~= 0 THEN LEAVE
Printer FormFeed
page = page + 1
END